﻿2026-08-25T14:20:24.9104812Z ##[group]Run set -euo pipefail
2026-08-25T14:20:24.9105098Z [36;1mset -euo pipefail[0m
2026-08-25T14:20:24.9105326Z [36;1mPIN=0c95435[0m
2026-08-25T14:20:24.9105538Z [36;1mCACHE="$HOME/spt-n1-oldbroker"[0m
2026-08-25T14:20:24.9105781Z [36;1mBIN="$CACHE/target/debug/spt"[0m
2026-08-25T14:20:24.9106105Z [36;1m# Self-healing cache: rebuild the pin only when it moves. Clone OUTSIDE[0m
2026-08-25T14:20:24.9106640Z [36;1m# the workspace (a clone inside gets adopted by the cargo workspace).[0m
2026-08-25T14:20:24.9107050Z [36;1mif [ ! -x "$BIN" ] || [ "$(cat "$CACHE/.builtpin" 2>/dev/null || true)" != "$PIN" ]; then[0m
2026-08-25T14:20:24.9107379Z [36;1m  rm -rf "$CACHE"[0m
2026-08-25T14:20:24.9107608Z [36;1m  git clone "$GITHUB_WORKSPACE" "$CACHE"[0m
2026-08-25T14:20:24.9107879Z [36;1m  git -C "$CACHE" checkout "$PIN"[0m
2026-08-25T14:20:24.9108211Z [36;1m  # CARGO_INCREMENTAL=0 — THE one-shot build in this workflow (releases#103:[0m
2026-08-25T14:20:24.9108616Z [36;1m  # -29.8% wall, -5.65 GB of target, n=3, slowest-OFF beat fastest-ON). The[0m
2026-08-25T14:20:24.9109131Z [36;1m  # finding is scoped to COLD one-shot builds and this is the only CI site that[0m
2026-08-25T14:20:24.9109550Z [36;1m  # is one: the cache is `rm -rf`'d and rebuilt from scratch when the pin moves,[0m
2026-08-25T14:20:24.9109950Z [36;1m  # and between pin moves it is consumed as a BINARY and never recompiled — so[0m
2026-08-25T14:20:24.9110371Z [36;1m  # the incremental state it would write is never read by anything, ever. Every[0m
2026-08-25T14:20:24.9110785Z [36;1m  # other cargo invocation in this workflow builds into the runner's PERSISTENT[0m
2026-08-25T14:20:24.9111199Z [36;1m  # `_work` target, where incremental is the mechanism that makes the next run[0m
2026-08-25T14:20:24.9111542Z [36;1m  # cheap; those are deliberately left alone.[0m
2026-08-25T14:20:24.9111894Z [36;1m  CARGO_INCREMENTAL=0 bash .github/bench/wrap.sh n1-oldbroker-build -- \[0m
2026-08-25T14:20:24.9112316Z [36;1m    cargo build --manifest-path "$CACHE/Cargo.toml" -p spt --bin spt[0m
2026-08-25T14:20:24.9112659Z [36;1m  echo "$PIN" > "$CACHE/.builtpin"[0m
2026-08-25T14:20:24.9112890Z [36;1mfi[0m
2026-08-25T14:20:24.9113145Z [36;1mSPT_N1_OLD_BROKER="$BIN" bash .github/bench/wrap.sh n1-pairing -- \[0m
2026-08-25T14:20:24.9113508Z [36;1m  cargo test -p spt --test n1_pairing -- --nocapture[0m
2026-08-25T14:20:24.9124650Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2026-08-25T14:20:24.9124927Z env:
2026-08-25T14:20:24.9125118Z   RUSTFLAGS: -C link-arg=-fuse-ld=mold
2026-08-25T14:20:24.9125609Z   SPT_CI_TEST_TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32856409565-1-BbMTSE
2026-08-25T14:20:24.9126053Z   TEMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32856409565-1-BbMTSE
2026-08-25T14:20:24.9126451Z   TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32856409565-1-BbMTSE
2026-08-25T14:20:24.9126850Z   TMPDIR: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-32856409565-1-BbMTSE
2026-08-25T14:20:24.9127174Z ##[endgroup]
2026-08-25T14:20:25.2318507Z    Compiling proc-macro2 v1.0.106
2026-08-25T14:20:25.2319104Z    Compiling unicode-ident v1.0.24
2026-08-25T14:20:25.2319470Z    Compiling quote v1.0.45
2026-08-25T14:20:25.2319799Z    Compiling libc v0.2.186
2026-08-25T14:20:25.2320119Z    Compiling cfg-if v1.0.4
2026-08-25T14:20:25.2320443Z    Compiling serde_core v1.0.228
2026-08-25T14:20:25.2320818Z    Compiling serde v1.0.228
2026-08-25T14:20:25.2321138Z    Compiling typenum v1.20.1
2026-08-25T14:20:25.2321471Z    Compiling log v0.4.32
2026-08-25T14:20:25.2321791Z    Compiling version_check v0.9.5
2026-08-25T14:20:25.2341450Z    Compiling pin-project-lite v0.2.17
2026-08-25T14:20:25.2441105Z    Compiling portable-atomic v1.13.1
2026-08-25T14:20:25.2523148Z    Compiling memchr v2.8.1
2026-08-25T14:20:25.2551292Z    Compiling critical-section v1.2.0
2026-08-25T14:20:25.2581847Z    Compiling subtle v2.6.1
2026-08-25T14:20:25.3152160Z    Compiling find-msvc-tools v0.1.9
2026-08-25T14:20:25.3517020Z    Compiling shlex v2.0.1
2026-08-25T14:20:25.3583581Z    Compiling futures-core v0.3.32
2026-08-25T14:20:25.3897968Z    Compiling smallvec v1.15.1
2026-08-25T14:20:25.4399684Z    Compiling bytes v1.11.1
2026-08-25T14:20:25.5028551Z    Compiling equivalent v1.0.2
2026-08-25T14:20:25.5143167Z    Compiling itoa v1.0.18
2026-08-25T14:20:25.5339684Z    Compiling semver v1.0.28
2026-08-25T14:20:25.5891199Z    Compiling stable_deref_trait v1.2.1
2026-08-25T14:20:25.5930690Z    Compiling futures-io v0.3.32
2026-08-25T14:20:25.6123493Z    Compiling futures-sink v0.3.32
2026-08-25T14:20:25.6126556Z    Compiling slab v0.4.12
2026-08-25T14:20:25.6415154Z    Compiling rand_core v0.10.1
2026-08-25T14:20:25.6541650Z    Compiling generic-array v0.14.7
2026-08-25T14:20:25.6588707Z    Compiling futures-task v0.3.32
2026-08-25T14:20:25.7146417Z    Compiling futures-channel v0.3.32
2026-08-25T14:20:25.7411135Z    Compiling bitflags v2.12.1
2026-08-25T14:20:25.7644125Z    Compiling cpufeatures v0.2.17
2026-08-25T14:20:25.7826629Z    Compiling hashbrown v0.17.1
2026-08-25T14:20:25.7971061Z    Compiling rustversion v1.0.22
2026-08-25T14:20:25.8044687Z    Compiling getrandom v0.4.2
2026-08-25T14:20:25.8188388Z    Compiling autocfg v1.5.1
2026-08-25T14:20:25.8351846Z    Compiling scopeguard v1.2.0
2026-08-25T14:20:25.8390821Z    Compiling fnv v1.0.7
2026-08-25T14:20:25.9001543Z    Compiling rustc_version v0.4.1
2026-08-25T14:20:25.9441982Z    Compiling lock_api v0.4.14
2026-08-25T14:20:25.9522957Z    Compiling const-oid v0.9.6
2026-08-25T14:20:26.0095256Z    Compiling strsim v0.11.1
2026-08-25T14:20:26.0230917Z    Compiling cfg_aliases v0.2.1
2026-08-25T14:20:26.0495144Z    Compiling libm v0.2.16
2026-08-25T14:20:26.0840463Z    Compiling litemap v0.8.2
2026-08-25T14:20:26.1570896Z    Compiling writeable v0.6.3
2026-08-25T14:20:26.2300451Z    Compiling icu_properties_data v2.2.0
2026-08-25T14:20:26.2691153Z    Compiling dunce v1.0.5
2026-08-25T14:20:26.2927211Z    Compiling num-traits v0.2.19
2026-08-25T14:20:26.3586290Z    Compiling fs_extra v1.3.0
2026-08-25T14:20:26.3587745Z    Compiling utf8_iter v1.0.4
2026-08-25T14:20:26.3730557Z    Compiling icu_normalizer_data v2.2.0
2026-08-25T14:20:26.3901053Z    Compiling ident_case v1.0.1
2026-08-25T14:20:26.5114213Z    Compiling percent-encoding v2.3.2
2026-08-25T14:20:26.5227621Z    Compiling http v1.4.1
2026-08-25T14:20:26.5335614Z    Compiling thiserror v2.0.18
2026-08-25T14:20:26.5729870Z    Compiling hybrid-array v0.4.12
2026-08-25T14:20:26.5798381Z    Compiling syn v2.0.117
2026-08-25T14:20:26.6101006Z    Compiling indexmap v2.14.0
2026-08-25T14:20:26.6509321Z    Compiling unicode-segmentation v1.13.3
2026-08-25T14:20:26.6582521Z    Compiling cpufeatures v0.3.0
2026-08-25T14:20:26.6880757Z    Compiling aws-lc-rs v1.17.0
2026-08-25T14:20:26.7175139Z    Compiling zerocopy v0.8.50
2026-08-25T14:20:26.7230340Z    Compiling form_urlencoded v1.2.2
2026-08-25T14:20:26.7300760Z    Compiling spin v0.9.8
2026-08-25T14:20:26.7508011Z    Compiling untrusted v0.9.0
2026-08-25T14:20:26.8450750Z    Compiling heck v0.5.0
2026-08-25T14:20:26.8990673Z    Compiling rustls v0.23.40
2026-08-25T14:20:26.9190828Z    Compiling unicode-xid v0.2.6
2026-08-25T14:20:26.9440697Z    Compiling const-oid v0.10.2
2026-08-25T14:20:26.9777230Z    Compiling jobserver v0.1.34
2026-08-25T14:20:27.0012601Z    Compiling atomic-waker v1.1.2
2026-08-25T14:20:27.0397804Z    Compiling anyhow v1.0.102
2026-08-25T14:20:27.0494353Z    Compiling paste v1.0.15
2026-08-25T14:20:27.0543394Z    Compiling parking_lot_core v0.9.12
2026-08-25T14:20:27.0882148Z    Compiling fastrand v2.4.1
2026-08-25T14:20:27.2107249Z    Compiling convert_case v0.10.0
2026-08-25T14:20:27.2459747Z    Compiling cc v1.2.63
2026-08-25T14:20:27.2562914Z    Compiling crypto-common v0.1.7
2026-08-25T14:20:27.2691248Z    Compiling block-buffer v0.10.4
2026-08-25T14:20:27.3090855Z    Compiling crypto-common v0.2.2
2026-08-25T14:20:27.3150773Z    Compiling block-buffer v0.12.0
2026-08-25T14:20:27.3230754Z    Compiling inout v0.2.2
2026-08-25T14:20:27.3711779Z    Compiling digest v0.10.7
2026-08-25T14:20:27.3861353Z    Compiling httparse v1.10.1
2026-08-25T14:20:27.4492704Z    Compiling curve25519-dalek v4.1.3
2026-08-25T14:20:27.4560787Z    Compiling ahash v0.8.12
2026-08-25T14:20:27.4639912Z    Compiling base64ct v1.8.3
2026-08-25T14:20:27.5203264Z    Compiling http-body v1.0.1
2026-08-25T14:20:27.5282579Z    Compiling either v1.16.0
2026-08-25T14:20:27.6367682Z    Compiling powerfmt v0.2.0
2026-08-25T14:20:27.6861086Z    Compiling sha2 v0.10.9
2026-08-25T14:20:27.7868739Z    Compiling deranged v0.5.8
2026-08-25T14:20:27.8080613Z    Compiling pem-rfc7468 v1.0.0
2026-08-25T14:20:27.8453240Z    Compiling mio v1.2.1
2026-08-25T14:20:27.9520720Z    Compiling socket2 v0.6.4
2026-08-25T14:20:28.0110623Z    Compiling getrandom v0.2.17
2026-08-25T14:20:28.2010644Z    Compiling rand_core v0.6.4
2026-08-25T14:20:28.2140679Z    Compiling cipher v0.5.2
2026-08-25T14:20:28.2391924Z    Compiling uuid v1.23.2
2026-08-25T14:20:28.2600798Z    Compiling pkg-config v0.3.33
2026-08-25T14:20:28.2964484Z    Compiling zmij v1.0.21
2026-08-25T14:20:28.3040851Z    Compiling try-lock v0.2.5
2026-08-25T14:20:28.3878765Z    Compiling signature v2.2.0
2026-08-25T14:20:28.4469803Z    Compiling num-conv v0.2.2
2026-08-25T14:20:28.4850822Z    Compiling cmake v0.1.58
2026-08-25T14:20:28.5040676Z    Compiling chacha20 v0.10.0
2026-08-25T14:20:28.5115084Z    Compiling tower-service v0.3.3
2026-08-25T14:20:28.5535911Z    Compiling base64 v0.22.1
2026-08-25T14:20:28.5809597Z    Compiling vcpkg v0.2.15
2026-08-25T14:20:28.5930749Z    Compiling tinyvec_macros v0.1.1
2026-08-25T14:20:28.6060760Z    Compiling time-core v0.1.8
2026-08-25T14:20:28.6560664Z    Compiling data-encoding v2.11.0
2026-08-25T14:20:28.6640892Z    Compiling tinyvec v1.11.0
2026-08-25T14:20:28.7114786Z    Compiling num-integer v0.1.47
2026-08-25T14:20:28.7652538Z    Compiling rand v0.10.1
2026-08-25T14:20:28.7991058Z    Compiling parking_lot v0.12.5
2026-08-25T14:20:28.8100835Z    Compiling want v0.3.1
2026-08-25T14:20:28.8232748Z    Compiling inout v0.1.4
2026-08-25T14:20:28.9306538Z    Compiling spt-procident v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-procident)
2026-08-25T14:20:28.9441774Z    Compiling vergen-lib v9.1.0
2026-08-25T14:20:28.9628284Z    Compiling n0-future v0.3.2
2026-08-25T14:20:28.9710500Z    Compiling httpdate v1.0.3
2026-08-25T14:20:28.9731314Z    Compiling serde_json v1.0.150
2026-08-25T14:20:28.9845307Z    Compiling crossbeam-utils v0.8.21
2026-08-25T14:20:29.0930595Z    Compiling cordyceps v0.3.4
2026-08-25T14:20:29.1360949Z    Compiling num-bigint-dig v0.8.6
2026-08-25T14:20:29.1605271Z    Compiling winnow v1.0.3
2026-08-25T14:20:29.1721004Z    Compiling parking v2.2.1
2026-08-25T14:20:29.1935507Z    Compiling spin v0.10.0
2026-08-25T14:20:29.2590598Z    Compiling diatomic-waker v0.2.3
2026-08-25T14:20:29.2809338Z    Compiling futures-lite v2.6.1
2026-08-25T14:20:29.3161882Z    Compiling spt-poolguard v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-poolguard)
2026-08-25T14:20:29.3380867Z    Compiling num-iter v0.1.46
2026-08-25T14:20:29.3463061Z    Compiling aws-lc-sys v0.41.0
2026-08-25T14:20:29.3473387Z    Compiling ring v0.17.14
2026-08-25T14:20:29.3605558Z    Compiling cipher v0.4.4
2026-08-25T14:20:29.3890919Z    Compiling ed25519 v2.2.3
2026-08-25T14:20:29.3939925Z    Compiling libsqlite3-sys v0.30.1
2026-08-25T14:20:29.4114260Z    Compiling futures-buffered v0.2.13
2026-08-25T14:20:29.4269089Z    Compiling netlink-packet-core v0.8.1
2026-08-25T14:20:29.4873407Z    Compiling digest v0.11.3
2026-08-25T14:20:29.5700752Z    Compiling universal-hash v0.5.1
2026-08-25T14:20:29.6047170Z    Compiling lazy_static v1.5.0
2026-08-25T14:20:29.6588467Z    Compiling vergen v9.1.0
2026-08-25T14:20:29.6841156Z    Compiling vergen-lib v0.1.6
2026-08-25T14:20:29.7012677Z    Compiling heapless v0.7.17
2026-08-25T14:20:29.7161458Z    Compiling curve25519-dalek v5.0.0-pre.6
2026-08-25T14:20:29.8025341Z    Compiling noq-udp v0.10.0
2026-08-25T14:20:29.8221328Z    Compiling aho-corasick v1.1.4
2026-08-25T14:20:29.8408215Z    Compiling sync_wrapper v1.0.2
2026-08-25T14:20:29.8410715Z    Compiling regex-syntax v0.8.10
2026-08-25T14:20:29.8604858Z    Compiling opaque-debug v0.3.1
2026-08-25T14:20:29.8777596Z    Compiling allocator-api2 v0.2.21
2026-08-25T14:20:29.8914272Z    Compiling byteorder v1.5.0
2026-08-25T14:20:29.9234127Z    Compiling toml_datetime v1.1.1+spec-1.1.0
2026-08-25T14:20:29.9302800Z    Compiling polyval v0.6.2
2026-08-25T14:20:30.0236340Z    Compiling spt-store v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-store)
2026-08-25T14:20:30.1010651Z    Compiling hash32 v0.2.1
2026-08-25T14:20:30.1827739Z    Compiling vergen-gitcl v1.0.8
2026-08-25T14:20:30.2121226Z    Compiling fallible-iterator v0.3.0
2026-08-25T14:20:30.2954624Z    Compiling num_threads v0.1.7
2026-08-25T14:20:30.3209416Z    Compiling signature v3.0.0
2026-08-25T14:20:30.3422798Z    Compiling tower-layer v0.3.3
2026-08-25T14:20:30.4299967Z    Compiling fallible-streaming-iterator v0.1.9
2026-08-25T14:20:30.4300897Z    Compiling ryu v1.0.23
2026-08-25T14:20:30.4474301Z    Compiling time v0.3.47
2026-08-25T14:20:30.5251968Z    Compiling ghash v0.5.1
2026-08-25T14:20:30.5624126Z    Compiling sha2 v0.11.0-rc.5
2026-08-25T14:20:30.6046439Z    Compiling ctr v0.9.2
2026-08-25T14:20:30.6249530Z    Compiling aes v0.8.4
2026-08-25T14:20:30.7891139Z    Compiling fs2 v0.4.3
2026-08-25T14:20:30.8080819Z    Compiling http-body-util v0.1.3
2026-08-25T14:20:30.9257824Z    Compiling toml_parser v1.1.2+spec-1.1.0
2026-08-25T14:20:30.9374936Z    Compiling aead v0.5.2
2026-08-25T14:20:31.0380541Z    Compiling arrayvec v0.7.6
2026-08-25T14:20:31.0741502Z    Compiling utf8parse v0.2.2
2026-08-25T14:20:31.1002141Z    Compiling rustix v1.1.4
2026-08-25T14:20:31.1431093Z    Compiling openssl-probe v0.2.1
2026-08-25T14:20:31.1551454Z    Compiling aes-gcm v0.10.3
2026-08-25T14:20:31.2490052Z    Compiling crossbeam-channel v0.5.15
2026-08-25T14:20:31.2924544Z    Compiling crossbeam-epoch v0.9.18
2026-08-25T14:20:31.3237938Z    Compiling netlink-packet-route v0.29.0
2026-08-25T14:20:31.3640833Z    Compiling blake3 v1.8.5
2026-08-25T14:20:31.5423615Z    Compiling memoffset v0.6.5
2026-08-25T14:20:31.6451220Z    Compiling synstructure v0.13.2
2026-08-25T14:20:31.6951711Z    Compiling darling_core v0.20.11
2026-08-25T14:20:31.7039683Z    Compiling toml_edit v0.25.12+spec-1.1.0
2026-08-25T14:20:31.8280661Z    Compiling ppv-lite86 v0.2.21
2026-08-25T14:20:31.8896989Z    Compiling acto v0.8.2
2026-08-25T14:20:31.8986669Z    Compiling netwatch v0.16.0
2026-08-25T14:20:31.9891030Z    Compiling noq v0.18.0
2026-08-25T14:20:32.0465990Z    Compiling foldhash v0.2.0
2026-08-25T14:20:32.1197053Z    Compiling mac-addr v0.3.0
2026-08-25T14:20:32.1443805Z    Compiling identity-hash v0.1.0
2026-08-25T14:20:32.2068332Z    Compiling regex-automata v0.4.14
2026-08-25T14:20:32.2150701Z    Compiling thiserror v1.0.69
2026-08-25T14:20:32.2419663Z    Compiling ref-cast v1.0.25
2026-08-25T14:20:32.2830565Z    Compiling rand_chacha v0.3.1
2026-08-25T14:20:32.3110876Z    Compiling tagptr v0.2.0
2026-08-25T14:20:32.3464741Z    Compiling lru-slab v0.1.2
2026-08-25T14:20:32.4701550Z    Compiling sorted-index-buffer v0.2.1
2026-08-25T14:20:32.5000900Z    Compiling linux-raw-sys v0.12.1
2026-08-25T14:20:32.5070692Z    Compiling rustc-hash v2.1.2
2026-08-25T14:20:32.5347173Z    Compiling xml-rs v0.8.28
2026-08-25T14:20:32.6131400Z    Compiling rand v0.8.7
2026-08-25T14:20:32.6378001Z    Compiling proc-macro-crate v3.5.0
2026-08-25T14:20:33.0572234Z    Compiling hashbrown v0.16.1
2026-08-25T14:20:33.1972850Z    Compiling serde_derive_internals v0.29.1
2026-08-25T14:20:33.2655506Z    Compiling netlink-packet-route v0.30.0
2026-08-25T14:20:33.6120930Z    Compiling xmltree v0.10.3
2026-08-25T14:20:33.6179673Z    Compiling serde_derive v1.0.228
2026-08-25T14:20:33.6271069Z    Compiling zeroize_derive v1.4.3
2026-08-25T14:20:33.7479838Z    Compiling tokio-macros v2.7.0
2026-08-25T14:20:33.8435113Z    Compiling futures-macro v0.3.32
2026-08-25T14:20:34.0094814Z    Compiling zerofrom-derive v0.1.7
2026-08-25T14:20:34.0712663Z    Compiling yoke-derive v0.8.2
2026-08-25T14:20:34.2415079Z    Compiling zeroize v1.8.2
2026-08-25T14:20:34.3460975Z    Compiling zerovec-derive v0.11.3
2026-08-25T14:20:34.4231913Z    Compiling displaydoc v0.2.6
2026-08-25T14:20:34.4440835Z    Compiling tracing-attributes v0.1.31
2026-08-25T14:20:34.5051124Z    Compiling tokio v1.52.3
2026-08-25T14:20:34.6471183Z    Compiling rustls-pki-types v1.14.1
2026-08-25T14:20:34.8114838Z    Compiling futures-util v0.3.32
2026-08-25T14:20:35.2574772Z    Compiling curve25519-dalek-derive v0.1.1
2026-08-25T14:20:35.2911515Z    Compiling thiserror-impl v2.0.18
2026-08-25T14:20:35.4651666Z    Compiling darling_macro v0.20.11
2026-08-25T14:20:35.5110856Z    Compiling zerofrom v0.1.8
2026-08-25T14:20:35.6250635Z    Compiling yoke v0.8.3
2026-08-25T14:20:35.8110618Z    Compiling zerotrie v0.2.4
2026-08-25T14:20:35.8224151Z    Compiling darling v0.20.11
2026-08-25T14:20:35.8456884Z    Compiling zerovec v0.11.6
2026-08-25T14:20:35.9350546Z    Compiling derive_more-impl v2.1.1
2026-08-25T14:20:35.9411746Z    Compiling derive_builder_core v0.20.2
2026-08-25T14:20:35.9668828Z    Compiling der v0.7.10
2026-08-25T14:20:36.1460827Z    Compiling n0-error-macros v0.1.3
2026-08-25T14:20:36.5798347Z    Compiling tinystr v0.8.3
2026-08-25T14:20:36.5891341Z    Compiling potential_utf v0.1.5
2026-08-25T14:20:36.7170730Z    Compiling icu_collections v2.2.0
2026-08-25T14:20:36.7738655Z    Compiling icu_locale_core v2.2.0
2026-08-25T14:20:37.0104947Z    Compiling spez v0.1.2
2026-08-25T14:20:37.0749445Z    Compiling spki v0.7.3
2026-08-25T14:20:37.1532784Z    Compiling derive_builder_macro v0.20.2
2026-08-25T14:20:37.3409922Z    Compiling n0-error v0.1.3
2026-08-25T14:20:37.4265652Z    Compiling derive_builder v0.20.2
2026-08-25T14:20:37.4437166Z    Compiling der v0.8.0-rc.10
2026-08-25T14:20:37.5216130Z    Compiling pin-project-internal v1.1.13
2026-08-25T14:20:37.6642351Z    Compiling pkcs8 v0.10.2
2026-08-25T14:20:37.9640561Z    Compiling icu_provider v2.2.0
2026-08-25T14:20:38.0668359Z    Compiling pkcs1 v0.7.5
2026-08-25T14:20:38.3697268Z    Compiling icu_properties v2.2.0
2026-08-25T14:20:38.4348705Z    Compiling icu_normalizer v2.2.0
2026-08-25T14:20:38.4549758Z    Compiling ed25519-dalek v2.2.0
2026-08-25T14:20:38.7126560Z    Compiling ipnet v2.12.0
2026-08-25T14:20:38.7373356Z    Compiling futures-executor v0.3.32
2026-08-25T14:20:38.8140863Z    Compiling pin-project v1.1.13
2026-08-25T14:20:38.8307945Z    Compiling spt-proto v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-proto)
2026-08-25T14:20:39.0410687Z    Compiling spki v0.8.0-rc.4
2026-08-25T14:20:39.0760541Z    Compiling futures v0.3.32
2026-08-25T14:20:39.1475047Z    Compiling prefix-trie v0.8.4
2026-08-25T14:20:39.2240345Z    Compiling pkcs8 v0.11.0-rc.10
2026-08-25T14:20:39.3085112Z    Compiling once_cell v1.21.4
2026-08-25T14:20:39.3875600Z    Compiling ed25519 v3.0.0-rc.4
2026-08-25T14:20:39.5076093Z    Compiling tracing-core v0.1.36
2026-08-25T14:20:39.6610776Z    Compiling cobs v0.3.0
2026-08-25T14:20:39.7150075Z    Compiling hashbrown v0.14.5
2026-08-25T14:20:39.7844675Z    Compiling regex v1.12.3
2026-08-25T14:20:39.8408605Z    Compiling idna_adapter v1.2.2
2026-08-25T14:20:39.8800659Z    Compiling postcard-derive v0.2.2
2026-08-25T14:20:39.9404534Z    Compiling idna v1.1.0
2026-08-25T14:20:39.9721033Z    Compiling tracing v0.1.44
2026-08-25T14:20:40.1751495Z    Compiling derive_more v2.1.1
2026-08-25T14:20:40.2900827Z    Compiling rsa v0.9.10
2026-08-25T14:20:40.3320910Z    Compiling tokio-util v0.7.18
2026-08-25T14:20:40.3390748Z    Compiling netlink-sys v0.8.8
2026-08-25T14:20:40.3941356Z    Compiling url v2.5.8
2026-08-25T14:20:40.3981167Z    Compiling data-encoding-macro-internal v0.1.18
2026-08-25T14:20:40.4703364Z    Compiling postcard v1.1.3
2026-08-25T14:20:40.5318520Z    Compiling hashlink v0.9.1
2026-08-25T14:20:40.5944350Z    Compiling tower v0.5.3
2026-08-25T14:20:40.7692235Z    Compiling data-encoding-macro v0.1.20
2026-08-25T14:20:40.8162939Z    Compiling ed25519-dalek v3.0.0-pre.6
2026-08-25T14:20:40.8326335Z    Compiling rustls-native-certs v0.8.4
2026-08-25T14:20:40.8853413Z    Compiling strum_macros v0.28.0
2026-08-25T14:20:40.9133436Z    Compiling enum-assoc v1.3.0
2026-08-25T14:20:41.0322225Z    Compiling rusqlite v0.32.1
2026-08-25T14:20:41.1403347Z    Compiling hickory-proto v0.26.0-beta.4
2026-08-25T14:20:41.1881975Z    Compiling async-trait v0.1.89
2026-08-25T14:20:41.2453528Z    Compiling h2 v0.4.14
2026-08-25T14:20:41.2735291Z    Compiling iroh-metrics-derive v0.4.1
2026-08-25T14:20:41.2840610Z    Compiling num_enum_derive v0.7.6
2026-08-25T14:20:41.3593294Z    Compiling n0-watcher v0.6.1
2026-08-25T14:20:41.4285001Z    Compiling iroh-relay v0.98.0
2026-08-25T14:20:41.6040493Z    Compiling tokio-stream v0.1.18
2026-08-25T14:20:41.6202169Z    Compiling tower-http v0.6.11
2026-08-25T14:20:41.7044885Z    Compiling iroh-metrics v0.38.3
2026-08-25T14:20:41.7270007Z    Compiling iroh-base v0.98.0
2026-08-25T14:20:41.7385700Z    Compiling attohttpc v0.30.1
2026-08-25T14:20:41.7870719Z    Compiling netdev v0.42.0
2026-08-25T14:20:42.0512745Z    Compiling netlink-proto v0.12.0
2026-08-25T14:20:42.1941082Z    Compiling moka v0.12.15
2026-08-25T14:20:42.2320406Z    Compiling toml_datetime v0.6.11
2026-08-25T14:20:42.3264788Z    Compiling num_enum v0.7.6
2026-08-25T14:20:42.3880435Z    Compiling serde_spanned v0.6.9
2026-08-25T14:20:42.3964200Z    Compiling ref-cast-impl v1.0.25
2026-08-25T14:20:42.4580507Z    Compiling thiserror-impl v1.0.69
2026-08-25T14:20:42.5751208Z    Compiling ioctl-rs v0.1.6
2026-08-25T14:20:42.6635509Z    Compiling termios v0.2.2
2026-08-25T14:20:42.7985217Z    Compiling serial-core v0.4.0
2026-08-25T14:20:42.8836721Z    Compiling errno v0.3.14
2026-08-25T14:20:42.9081173Z    Compiling simple-dns v0.9.3
2026-08-25T14:20:42.9400096Z    Compiling toml_write v0.1.2
2026-08-25T14:20:43.0039203Z    Compiling arrayref v0.3.9
2026-08-25T14:20:43.0324115Z    Compiling signal-hook v0.3.18
2026-08-25T14:20:43.0529401Z    Compiling smol_str v0.1.24
2026-08-25T14:20:43.1611147Z    Compiling simdutf8 v0.1.5
2026-08-25T14:20:43.1730914Z    Compiling winnow v0.7.15
2026-08-25T14:20:43.2523501Z    Compiling resolv-conf v0.7.6
2026-08-25T14:20:43.2786999Z    Compiling constant_time_eq v0.4.2
2026-08-25T14:20:43.2866569Z    Compiling sha1_smol v1.0.1
2026-08-25T14:20:43.4373224Z    Compiling strum v0.28.0
2026-08-25T14:20:43.4881209Z    Compiling signal-hook-registry v1.4.8
2026-08-25T14:20:43.4994636Z    Compiling serial-unix v0.4.0
2026-08-25T14:20:43.7080961Z    Compiling webpki-roots v1.0.7
2026-08-25T14:20:43.7159502Z    Compiling schemars_derive v1.2.1
2026-08-25T14:20:43.7290753Z    Compiling lru v0.16.4
2026-08-25T14:20:43.8174608Z    Compiling darling_core v0.23.0
2026-08-25T14:20:43.8400613Z    Compiling serde_bytes v0.11.19
2026-08-25T14:20:43.8890760Z    Compiling seize v0.5.1
2026-08-25T14:20:43.9005028Z    Compiling hmac v0.12.1
2026-08-25T14:20:43.9503120Z    Compiling iroh v0.98.2
2026-08-25T14:20:44.0278351Z    Compiling cmov v0.5.4
2026-08-25T14:20:44.0530822Z    Compiling dyn-clone v1.0.20
2026-08-25T14:20:44.1079300Z    Compiling rustix v0.38.44
2026-08-25T14:20:44.1191403Z    Compiling pin-utils v0.1.0
2026-08-25T14:20:44.1610508Z    Compiling bitflags v1.3.2
2026-08-25T14:20:44.1677273Z    Compiling papaya v0.2.4
2026-08-25T14:20:44.1750097Z    Compiling swarm-discovery v0.6.0-alpha.2 (https://github.com/SaberMage/swarm-discovery?rev=89a2200d54a4e3cab2f46cc75ebff49a1fb07614#89a2200d)
2026-08-25T14:20:44.1936856Z    Compiling hkdf v0.12.4
2026-08-25T14:20:44.2320979Z    Compiling nix v0.25.1
2026-08-25T14:20:44.2870746Z    Compiling iroh-dns v0.98.0
2026-08-25T14:20:44.3421137Z    Compiling ctutils v0.4.2
2026-08-25T14:20:44.3699909Z    Compiling filedescriptor v0.8.3
2026-08-25T14:20:44.5986735Z    Compiling serial v0.4.0
2026-08-25T14:20:44.6210764Z    Compiling backon v1.6.0
2026-08-25T14:20:44.6660613Z    Compiling anstyle-parse v1.0.0
2026-08-25T14:20:44.7321267Z    Compiling vte_generate_state_changes v0.1.2
2026-08-25T14:20:44.8114104Z    Compiling shell-words v1.1.1
2026-08-25T14:20:44.8597470Z    Compiling anstyle-query v1.1.5
2026-08-25T14:20:44.8740909Z    Compiling linux-raw-sys v0.4.15
2026-08-25T14:20:44.9318871Z    Compiling colorchoice v1.0.5
2026-08-25T14:20:44.9473504Z    Compiling foldhash v0.1.5
2026-08-25T14:20:44.9854050Z    Compiling instability v0.3.12
2026-08-25T14:20:44.9981602Z    Compiling downcast-rs v1.2.1
2026-08-25T14:20:45.0321989Z    Compiling is_terminal_polyfill v1.70.2
2026-08-25T14:20:45.0740883Z    Compiling unicode-width v0.2.0
2026-08-25T14:20:45.1105846Z    Compiling anstyle v1.0.14
2026-08-25T14:20:45.1391227Z    Compiling hashbrown v0.15.5
2026-08-25T14:20:45.1545013Z    Compiling vte v0.13.1
2026-08-25T14:20:45.3076668Z    Compiling anstream v1.0.0
2026-08-25T14:20:45.3537111Z    Compiling signal-hook-mio v0.2.5
2026-08-25T14:20:45.4518190Z    Compiling toml_edit v0.22.27
2026-08-25T14:20:45.6351184Z    Compiling spake2 v0.4.0
2026-08-25T14:20:45.6660651Z    Compiling terminal_size v0.4.4
2026-08-25T14:20:45.6861060Z    Compiling schemars v1.2.1
2026-08-25T14:20:45.7272891Z    Compiling strum_macros v0.26.4
2026-08-25T14:20:45.7880515Z    Compiling itertools v0.13.0
2026-08-25T14:20:45.9313039Z    Compiling sha1 v0.10.6
2026-08-25T14:20:46.0094619Z    Compiling castaway v0.2.4
2026-08-25T14:20:46.0964429Z    Compiling indoc v2.0.7
2026-08-25T14:20:46.1630674Z    Compiling static_assertions v1.1.0
2026-08-25T14:20:46.2170470Z    Compiling clap_lex v1.1.0
2026-08-25T14:20:46.2840674Z    Compiling doctest-file v1.1.1
2026-08-25T14:20:46.4734603Z    Compiling unicode-width v0.1.14
2026-08-25T14:20:46.4818459Z    Compiling clap_builder v4.6.0
2026-08-25T14:20:46.4830310Z    Compiling crossterm v0.28.1
2026-08-25T14:20:46.4981653Z    Compiling compact_str v0.8.2
2026-08-25T14:20:46.7011066Z    Compiling interprocess v2.4.2
2026-08-25T14:20:46.7680906Z    Compiling lru v0.12.5
2026-08-25T14:20:46.9120657Z    Compiling hyper v1.10.1
2026-08-25T14:20:47.2230459Z    Compiling darling_macro v0.23.0
2026-08-25T14:20:47.2970744Z    Compiling clap_derive v4.6.1
2026-08-25T14:20:47.5305507Z    Compiling darling v0.23.0
2026-08-25T14:20:47.5581135Z    Compiling cassowary v0.3.0
2026-08-25T14:20:47.7069725Z    Compiling unicode-truncate v1.1.0
2026-08-25T14:20:47.8498142Z    Compiling iana-time-zone v0.1.65
2026-08-25T14:20:48.0705324Z    Compiling strum v0.26.3
2026-08-25T14:20:48.2098793Z    Compiling toml v0.8.23
2026-08-25T14:20:48.2199111Z    Compiling portable-pty v0.8.1
2026-08-25T14:20:48.2202628Z    Compiling ratatui v0.29.0
2026-08-25T14:20:48.2343062Z    Compiling chrono v0.4.45
2026-08-25T14:20:48.3511017Z    Compiling nucleo-matcher v0.3.1
2026-08-25T14:20:48.3511776Z    Compiling qrcode v0.14.1
2026-08-25T14:20:48.4170105Z    Compiling tempfile v3.27.0
2026-08-25T14:20:48.9276386Z    Compiling hyper-util v0.1.20
2026-08-25T14:20:48.9799332Z    Compiling spt-test-support v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-test-support)
2026-08-25T14:20:49.5450723Z    Compiling clap v4.6.1
2026-08-25T14:20:49.8453941Z    Compiling spt-msg v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-msg)
2026-08-25T14:20:50.2785833Z    Compiling spt-runtime v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-runtime)
2026-08-25T14:20:50.3392072Z    Compiling spt-term v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-term)
2026-08-25T14:20:50.6871296Z    Compiling igd-next v0.17.1
2026-08-25T14:20:51.8384254Z    Compiling portmapper v0.16.0
2026-08-25T14:20:53.5442686Z    Compiling spt-live v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-live)
2026-08-25T14:20:56.5313595Z    Compiling rustls-webpki v0.103.13
2026-08-25T14:20:58.7978354Z    Compiling tokio-rustls v0.26.4
2026-08-25T14:20:58.7979156Z    Compiling rustls-platform-verifier v0.7.0
2026-08-25T14:20:58.7979650Z    Compiling noq-proto v0.17.0
2026-08-25T14:20:58.9465640Z    Compiling hyper-rustls v0.27.9
2026-08-25T14:20:58.9467066Z    Compiling hickory-net v0.26.0-beta.4
2026-08-25T14:20:58.9467577Z    Compiling tokio-websockets v0.13.2
2026-08-25T14:20:59.0700932Z    Compiling reqwest v0.13.4
2026-08-25T14:20:59.9784299Z    Compiling hickory-resolver v0.26.0-beta.4
2026-08-25T14:21:12.8852511Z    Compiling spt-net v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-net)
2026-08-25T14:21:14.7533421Z    Compiling spt-daemon v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-daemon)
2026-08-25T14:21:25.2743376Z    Compiling spt v0.63.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt)
2026-08-25T14:21:31.8453117Z     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 06s
2026-08-25T14:21:31.8676862Z      Running tests/n1_pairing.rs (target/debug/deps/n1_pairing-8a409b1382dc8e09)
2026-08-25T14:21:31.8690591Z 
2026-08-25T14:21:31.8690825Z running 1 test
2026-08-25T14:21:38.0667699Z test new_brain_serves_against_old_broker ... ok
2026-08-25T14:21:38.0668133Z 
2026-08-25T14:21:38.0668400Z test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 6.20s
2026-08-25T14:21:38.0668757Z 
